home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / os2tools / devshell / dshell.cfg < prev    next >
Text File  |  1991-12-07  |  4KB  |  107 lines

  1. #------------------------------------------------------------
  2. #         DevShell - Developers Shell                  
  3. #     (C) Copyright 1991 Frank V. Castellucci          
  4. #             All Rights Reserved                      
  5. #
  6. #       DevShell Configuration File
  7. #       General keywords and symbols required when described:
  8. #       
  9. #       ALIAS
  10. #       =
  11. #       VOL
  12. #       UPCASEASSIGN
  13. #
  14. #       Syntax  UPPERCASE               -       required keyword
  15. #               <userinput>             -       user defined
  16. #               [option1|optionN]       -       optional strings
  17. #
  18. #       All strings and assignments can only use 1 line, for now.
  19. #------------------------------------------------------------
  20.  
  21. #------------------------------------------------------------
  22. #       Home and help directory KEYWORD (HOME,HELP) required
  23. #------------------------------------------------------------
  24.  
  25. HOME    =       G:\REXXAPPS
  26. HELP    =       G:\REXXAPPS
  27.  
  28. #-----------------------------------------------------------
  29. #       Configuration lookaside assignments
  30. #       Usage:  UPCASEASSIGN = <application>
  31. #
  32. #               Where UPCASEASSIGN is what you will be
  33. #               calling on the DevShell command line. Note
  34. #               that when called, case is insensitive.
  35. #               This name can also be referenced in the
  36. #               using command for alias lists.
  37. #
  38. #               <application> is the name, or full path and
  39. #               name, of the application to execute when
  40. #               entering UPCASEASSIGN. 
  41. #-----------------------------------------------------------
  42.  
  43. BROWSE  =       FB              #       Browse ( read only ) utility
  44. EDIT    =       T               #       Editor utility
  45. CC      =       cl              #       Compiler
  46. LINK    =       link            #       Linker
  47. RC      =       rc              #       Resource Compiler
  48. MAKE    =       nmake           #       Make Utility
  49. STAT    =       pstat           #       System Activity Display
  50. MEXEC   =       mbbsexec        #       BBS Batch executor
  51.  
  52. #-----------------------------------------------------------
  53. #       Volser assignment area
  54. #       Usage : VOL = <assignment> <fullpath>
  55. #
  56. #               Where <assignment> is what you want to 
  57. #               enter with the 'GO' command. 
  58. #
  59. #               <fullpath> is the fully qualified path name
  60. #               that <assignment> refers to.
  61. #----------------------------------------------------------- 
  62.  
  63. VOL     =       os2dir          C:\OS2
  64. VOL     =       dlldir          C:\OS2\DLL
  65. VOL     =       comobj          G:\LANCOMMON.OBJECT.DECKS
  66. VOL     =       comsrc          F:\LANCOMMON\SOURCE
  67. VOL     =       sysobj          G:\SYSTEMSERVICES.OBJECT.DECKS
  68. VOL     =       syssrc          F:\SYSTEMSERVICES\SOURCE
  69. VOL     =       history         G:\OSRM2L\HISTORY
  70. VOL     =       bbsmain         E:\MAGNUM
  71. VOL     =       bbsblib         E:\MAGNUM\BETAFILE
  72. VOL     =       bbsclib         E:\MAGNUM\CORRECT
  73. VOL     =       bbsdlib         E:\MAGNUM\DEVELOP
  74. VOL     =       bbstlib         E:\MAGNUM\TECH_RM2
  75.  
  76. #-----------------------------------------------------------
  77. #       Alias assignments area
  78. #       Usage : ALIAS = <assignment> EXEC <commandstring> [using | ?]
  79. #
  80. #               Where <assignment> is what you will enter on
  81. #               the DevShell command line.
  82. #
  83. #               <commandstring> is what will be executed as
  84. #               a results.
  85. #
  86. #               USING - can redirect execution to configuration
  87. #                       name.
  88. #
  89. #               ?     - Will prompt for arguments
  90. #-----------------------------------------------------------
  91.  
  92. ALIAS   =       comp            exec using CC
  93. ALIAS   =       comp?           exec using CC ?
  94. ALIAS   =       cls             exec cls
  95. ALIAS   =       checkin         exec ci ?
  96. ALIAS   =       checkout        exec co ?
  97. ALIAS   =       dir             exec dir
  98. ALIAS   =       dir?            exec dir ?
  99. ALIAS   =       del?            exec del ?
  100. ALIAS   =       delbak          exec del *.bak
  101. ALIAS   =       doeamanip       exec using MAKE -f eamanip.mak
  102. ALIAS   =       ls              exec dir
  103. ALIAS   =       ps              exec using STAT ?
  104. ALIAS   =       ld              exec dir *.
  105. ALIAS   =       wc              exec call wordcnt();
  106.  
  107.